home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d15 / icndl2.arc / ICONDLL.TXT < prev    next >
Text File  |  1991-02-03  |  2KB  |  59 lines

  1. ICONDLL.EXE                     v 2.0
  2.         By James M. Curran
  3.  
  4. Syntax:
  5.  
  6.         ICONDLL  [iconfiles]  [/R<filename>] [/O<filename>] [/?]
  7.  
  8.  
  9. Purpose:
  10.         ICONDLL is designed to build a Dynamically Linked Library (DLL) out
  11. of a collection of icon  files.  As a DLL, the single file of icons require 
  12. less disk space than the individual .ICO files (usually about half of much).
  13. Also, when changing the icon in the Program Manager, you only have type out
  14. the filename once, and then just keep clicking the "View Next" button until 
  15. the right icon appears.
  16.  
  17. Usage:
  18.         Unlike it's prevoius incarnation, this version of ICONDLL does NOT
  19. require the Resource Compiler (RC.EXE) program,  from  the Windows System 
  20. Development Kit (SDK).   In fact, it's completely self contained. It is 
  21. however still a DOS mode program, but maybe for version 3.0 I'll make it a 
  22. WindApp. The simpliest way to use it is just type  "ICONDLL"  at a  DOS C> 
  23. prompt.  This will create a file called ICONS.DLL which  contains all of 
  24. the .ICO files there were in the current directory.  If the icon files are 
  25. in a different directory or have a different  extention, just  give that 
  26. as a parmeter, eg:
  27.         ICONDLL  *.ICN
  28.         ICONDLL  D:\WINDOWS
  29.         ICONDLL  c:\icon\*.icx
  30.         ICONDLL  E:
  31.  
  32.    To create a file  with a name other than ICONS.DLL, use the /O 
  33. option, eg
  34.         ICONDLL  /OREDICONS.DLL
  35.         ICONDLL  /O  C:\WINDOWS\ICONS\WHODAT.XXX        
  36.        (the space after the /O is optional)
  37.  
  38.    A listing of the files put into the DLL is created.  Normally, it's 
  39. displayed on the screen.  To have it written to a file, use the /R option.
  40. eg
  41.         ICONDLL /R icons.txt
  42.  
  43. All the .ICO files in that directory can then be deleted or archived.  You 
  44. won't need them anymore.
  45.  
  46. The first version is this  program (which didn't do much by itself, and 
  47. needed the Windows SDK) was FREE.   However, this program actually does 
  48. some real work, and  required some actual programming effort on my part.   
  49. I really SHOULD charge for it.... OK, how about this.... You can use it 
  50. for free, but you gotta say "Golly, James is a nice guy"  whenever you do.
  51.  
  52. This program is provided free, as a public service, by 
  53.    James M. Curran
  54.    24 Greendale Road
  55.    Cedar Grove, NJ 07009
  56.    [72261,655]
  57.    
  58.  
  59.